/*============= PRE-LOADER ================ */
:root {
	--theme-primary:    #3D99F0;
	--theme-secondary:  #FFD20B;
	--theme-light-gray: #F3F2F2;
	--theme-gray:       #8C8D8C;
}

  
  .contain {
	background-image: url('/assets/falcon/images/die.png');
  background-size: cover;
	height: 100vh;
	padding:0;
	margin:0;
	display: inline-block;
	width: 100vw;
	text-align: center;
	position: fixed;
	z-index: 9999999;
  }
  
  .imger{
	/* width: 200px;
	height: 130px; */
	animation: fadeInUP 1s ease-in-out;
	padding-bottom: 5px;
	position: relative;
	top: 30vh;
  }
  
  @keyframes fadeInUP {
	from {
	  opacity: 0;
	  transform: translateY(-300px);
	}
	to {
	  opacity: 1;
	}
  }
  
  .para {font-family: 'Montserrat Alternates', sans-serif;
	font-size:18px;
	 font-weight:700;
	 padding-bottom:5px;
	 position: relative;
	 top: 30vh;
	color: black;
  text-align: center;
  animation: fadeInDown 1s ease-in-out;
  }
  
  @keyframes fadeInDown {
	from {
	  opacity: 0;
	  transform: translateY(300px);
	}
	to {
	  opacity: 1;
	}
  }
  .loader1 {
	display:inline-block;
	font-size:0px;
	padding:0px;
	position: relative;
	top: 30vh;
  }
  .loader1 span {
	vertical-align:middle;
	border-radius:100%;
	
	display:inline-block;
	width:20px;
	height:20px;
	margin:3px 2px;
	-webkit-animation:loader1 0.8s linear infinite alternate;
	animation:loader1 0.8s linear infinite alternate;
  }
  .loader1 span:nth-child(1) {
	-webkit-animation-delay:-1s;
	animation-delay:-1s;
   /* background: var(--theme-gray); */
  }
  .loader1 span:nth-child(2) {
	-webkit-animation-delay:-0.8s;
	animation-delay:-0.8s;
   /* background:var(--theme-primary); */
  }
  .loader1 span:nth-child(3) {
	-webkit-animation-delay:-0.26666s;
	animation-delay:-0.26666s;
   /* background:var(--theme-gray); */
  }
  .loader1 span:nth-child(4) {
	-webkit-animation-delay:-0.8s;
	animation-delay:-0.8s;
   /* background:var(--theme-primary); */
   
  }
  .loader1 span:nth-child(5) {
	-webkit-animation-delay:-1s;
	animation-delay:-1s;
   /* background:var(--theme-gray); */
  }
  
  @keyframes loader1 {
	from {transform: scale(0, 0);}
	to {transform: scale(1, 1);}
  }
  @-webkit-keyframes loader1 {
	from {-webkit-transform: scale(0, 0);}
	to {-webkit-transform: scale(1, 1);}
  }
  
  

/* ============PRE-LOADER END=========== */
